From 20c076d13b50e6d968a25ae51278054b6aa2fd08 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 8 Nov 2018 14:52:03 +0000 Subject: [PATCH] x86/amd: don't set pv_post_outb_hook when !CONFIG_PV MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Obviously it won't exist when PV is disabled. Signed-off-by: Wei Liu Acked-by: Andrew Cooper Reviewed-by: Roger Pau Monné --- xen/arch/x86/cpu/amd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/arch/x86/cpu/amd.c b/xen/arch/x86/cpu/amd.c index 8895c25682..e1fc88bdcf 100644 --- a/xen/arch/x86/cpu/amd.c +++ b/xen/arch/x86/cpu/amd.c @@ -631,7 +631,9 @@ static void init_amd(struct cpuinfo_x86 *c) case 0xf ... 0x17: disable_c1e(NULL); if (acpi_smi_cmd && (acpi_enable_value | acpi_disable_value)) { +#ifdef CONFIG_PV pv_post_outb_hook = amd_check_disable_c1e; +#endif amd_acpi_c1e_quirk = true; } break; -- 2.30.2